home *** CD-ROM | disk | FTP | other *** search
/ Elite College Girls 1 / Elite College Girls - Volume 1.iso / pc / shared.dir / 01968.ls < prev    next >
Encoding:
Text File  |  1996-02-02  |  452 b   |  15 lines

  1. global gPictSprite, gCenterH, gCenterV, gZoomDirection
  2.  
  3. on mouseDown
  4.   if legalButton(the clickOn) then
  5.     if the timer > 10 then
  6.       if the optionDown then
  7.         zoomSprite(gPictSprite, the clickLoc, the locH of sprite gPictSprite, the locV of sprite gPictSprite, -1)
  8.       else
  9.         zoomSprite(gPictSprite, the clickLoc, the locH of sprite gPictSprite, the locV of sprite gPictSprite, 1)
  10.       end if
  11.     end if
  12.     startTimer()
  13.   end if
  14. end
  15.